home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / mdipad.zip / MDIPAD.H < prev    next >
Text File  |  1993-02-24  |  2KB  |  66 lines

  1. // ************************************************************************
  2. //
  3. //                      Microsoft Developer Support
  4. //               Copyright (c) 1992, 1993 Microsoft Corporation
  5. //
  6. // ************************************************************************
  7. // HEADER    : MdiPad.H
  8. // PURPOSE   : A Win16/Win32 MdiPad Application Template Header File
  9. // COMMENTS  :
  10. //
  11. // ************************************************************************
  12.  
  13. #define WINDOWMENU  1   // Position of window menu
  14.  
  15. //-- menu items
  16. #define IDM_SYSMENU              0
  17.  
  18. #define IDM_FILE                 100
  19. #define IDM_FILE_NEW             IDM_FILE+1
  20. #define IDM_FILE_OPEN            IDM_FILE+2
  21. #define IDM_FILE_EXIT            IDM_FILE+99
  22.  
  23. #define IDM_WINDOW               800
  24. #define IDM_WINDOW_CASCADE       IDM_WINDOW+1
  25. #define IDM_WINDOW_TILE_HORZ     IDM_WINDOW+2
  26. #define IDM_WINDOW_TILE_VERT     IDM_WINDOW+3
  27. #define IDM_WINDOW_ARRANGEICONS  IDM_WINDOW+4
  28. #define IDM_WINDOW_CLOSEALL      IDM_WINDOW+10
  29.  
  30. #define IDM_HELP                 900
  31. #define IDM_HELP_CONTENTS        IDM_HELP+1
  32. #define IDM_HELP_SEARCH          IDM_HELP+2
  33. #define IDM_HELP_HOW             IDM_HELP+3
  34. #define IDM_HELP_ABOUT           IDM_HELP+99
  35.  
  36. //-- toolbar ids
  37. #define ID_TOOLBAR               1000
  38. #define ID_CREATEPARAM           ID_TOOLBAR+1
  39. #define ID_CREATEVALUE           ID_TOOLBAR+2
  40. #define ID_ZOOM                  ID_TOOLBAR+3
  41.  
  42. #define ID_STATUSBAR             1100
  43. #define ID_MENUFIELD             ID_STATUSBAR+1
  44. #define ID_TIMEFIELD             ID_STATUSBAR+2
  45. #define ID_NUMFIELD              ID_STATUSBAR+3
  46. #define ID_OVRFIELD              ID_STATUSBAR+4
  47. #define ID_SCROLLFIELD           ID_STATUSBAR+5
  48. #define ID_CAPSFIELD             ID_STATUSBAR+6
  49.  
  50. #define ID_BUTTON                2000
  51. #define ID_COMBO1                ID_BUTTON+1
  52. #define ID_COMBO2                ID_BUTTON+2
  53. #define ID_BOLD                  ID_BUTTON+3
  54. #define ID_ITALIC                ID_BUTTON+4
  55. #define ID_UNDER                 ID_BUTTON+5
  56. #define ID_LEFT                  ID_BUTTON+6
  57. #define ID_CENTER                ID_BUTTON+7
  58. #define ID_RIGHT                 ID_BUTTON+8
  59. #define ID_JUST                  ID_BUTTON+9
  60.  
  61. #define IDM_FIRSTCHILD           2000
  62.  
  63. //-- string ids
  64. #define IDS_APPNAME              9000
  65. #define IDS_SHORT_APPNAME        IDS_APPNAME+1
  66.